type github.com/oapi-codegen/runtime.fieldOrValue

13 uses

	github.com/oapi-codegen/runtime (current package)
		deepobject.go#L91: type fieldOrValue struct {
		deepobject.go#L92: 	fields map[string]fieldOrValue
		deepobject.go#L96: func (f *fieldOrValue) appendPathValue(path []string, value string) {
		deepobject.go#L99: 		f.fields[fieldName] = fieldOrValue{value: value}
		deepobject.go#L105: 		pv = fieldOrValue{
		deepobject.go#L106: 			fields: make(map[string]fieldOrValue),
		deepobject.go#L113: func makeFieldOrValue(paths [][]string, values []string) fieldOrValue {
		deepobject.go#L115: 	f := fieldOrValue{
		deepobject.go#L116: 		fields: make(map[string]fieldOrValue),
		deepobject.go#L195: func assignPathValues(dst interface{}, pathValues fieldOrValue) error {
		deepobject.go#L337: func assignSlice(dst reflect.Value, pathValues fieldOrValue) error {
		deepobject.go#L355: 		err := assignPathValues(dstElem.Interface(), fieldOrValue{value: values[i]})
		deepobject.go#L364: func sortedFieldOrValueKeys(m map[string]fieldOrValue) []string {